home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / doc / libcompress-bzip2-perl / ANNOUNCE next >
Text File  |  2005-05-11  |  2KB  |  50 lines

  1. Compress::Bzip2 2.08 has been released.
  2.  
  3. Features:
  4. =========
  5.  
  6. * built on top of bzip2 1.0.2
  7.  
  8. * extensive set of unit tests.
  9.  
  10. * a new file I/O interface with bzopen, bzread, bzwrite, bzclose, etc.
  11.  
  12. * a new stream interface.
  13.  
  14. * compatibility with Compress::Bzip2 1.03
  15.  
  16. * a Compress::Zlib clone interface, so that programs built for
  17.   Compress::Zlib should work with Compress::Bzip2 with no changes,
  18.   simply replace use Compress::Zlib; with use Compress::Bzip2
  19.   qw(:gzip);
  20.  
  21. * includes bzip2 1.0.2 source code, so that it will build on systems
  22.   without bzip2 installed.  The build process tests for the presence
  23.   of a useable installation of bzip2.  If none is found, the internal
  24.   source code is used.  If bzip2 is not installed in a standard
  25.   location, the correct location can be specified either with
  26.   environment variables or with a config file.
  27.  
  28. Bug fixes:
  29. ==========
  30.  
  31. * previous versions were either not functional or not interoperable
  32.   with bzip2 when dealing with files larger than the internal buffer
  33.   size (100k to 900k).  The 2.x series uses the logical eof rollover
  34.   method described in the bzip2 docs.
  35.  
  36. What is Bzip2 ?
  37. ===============
  38.  
  39. Bzip2 is a portable lossless data compression library written in ANSI
  40. C.  It offers pretty fast compression and fast decompression.  Bzip2
  41. has very good results, if you want to compress ASCII Documents.
  42.  
  43. Bzip2 is probably not great for streaming compression.  It fills it's
  44. internal buffer, which depending of parameters is between 100k and
  45. 900k in size, before it outputs ANY compressed data.  It works best
  46. compressing an entire document.
  47.  
  48. Streaming decompression on the other hand, gives a steady torrent of
  49. bytes.
  50.